home *** CD-ROM | disk | FTP | other *** search
/ PC-Blue - MS DOS Public Domain Library / PC-Blue MS-DOS Public Domain Library - NYACC.iso / vol260 / filecopy.arc / COPIER.PAS next >
Encoding:
Pascal/Delphi Source File  |  1985-12-16  |  384 b   |  16 lines

  1. Program Copier;
  2.  
  3. Type FileNameType = String[65];
  4.  
  5. {$I FileCopy.INC}
  6.  
  7. VAR InFile, OutFile : FileNameType;
  8.  
  9. Begin
  10.   Write('Input File Name: ');
  11.   Readln(InFile);
  12.   Write('Outout File Name: ');
  13.   Readln(OutFile);
  14.   CopyFile(InFile, OutFile);
  15. End.
  16.